home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 29
/
Volume 29 - JOGO DISK .iso
/
Games
/
funny_baseball.swf
/
scripts
/
DefineSprite_301
/
frame_3
/
DoAction.as
Wrap
Text File
|
2006-11-13
|
607b
|
24 lines
function Ball_xy()
{
this.ball._x = this.RX;
this.ball._y = this.RY;
this.Check = true;
this.onEnterFrame = function()
{
if(this.Check)
{
if(_parent._parent.Place == 1 || _parent._parent.Place == 2)
{
this.ball._x -= _parent.Ball_num / 5 / 8;
this.ball._y -= _parent.Ball_num / 5 / 8;
}
else if(_parent._parent.Place != 3)
{
this.ball._x += _parent.Ball_num / 5 / 8;
this.ball._y += _parent.Ball_num / 5 / 8;
}
}
};
}
_parent._parent.Choice = 3;